home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk62 / quicklib / quicklib.doc < prev    next >
Text File  |  1995-03-19  |  1KB  |  23 lines

  1. quicklib.bas is a little routine to allow quick bmap-loads for
  2. AmigaBasic.  What it does is ask you which routines from the library
  3. you're using, and then writes a subroutine (which you later merge into
  4. your main program) which will create a tiny .bmap file on the fly in
  5. RAM:, and then load it in with an appropriate "LIBRARY" call.  Thus, in
  6. one quick "CALL" you're ready to go, and it is much faster than loading
  7. the actual, full .bmap file and also makes your program independent of
  8. the actual location of the .bmap files on the target system: folks
  9. USING your program won't have to worry about copying the .bmap files
  10. into the right directory (or, in fact, even knowing that such things as
  11. ".bmap files" exist at all).
  12.  
  13. This is mostly just a typein of the program described in Amazing
  14. Computing, Vol 4 No 3, March 1989, "Breaking the Bmap Barrier" by
  15. Robert D'Asto.  I fiddled with the program a little bit, just to clean
  16. a thing up here or there, but the program is, for all intents and
  17. purposes, just as Robert wrote it.   Amazing Computing is published by
  18. PiM Publications, PO Box 869, Fall River, MA 02722; 508-678-4200.
  19. This program (and this super-brief summary of Robert's article) are
  20. reproduced with permission.
  21.  
  22. Bernie Cosell, cosell@bbn.com, 12 March 89
  23.